home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-11-30 | 1.3 KB | 72 lines | [TEXT/MPS ] |
- ; File: FileTransferTools.a
- ;
- ; Copyright: © 1983-1993 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: System 7.1 for ETO #11
- ; Created: Tuesday, March 30, 1993 18:00
- ;
- ;___________________________________________________________________________
-
- IF &TYPE('__INCLUDINGFILETRANSFERTOOLS__') = 'UNDEFINED' THEN
- __INCLUDINGFILETRANSFERTOOLS__ SET 1
-
- ; messages for fDEFs
- ftInitMsg EQU 0
- ftDisposeMsg EQU 1
- ftSuspendMsg EQU 2
- ftResumeMsg EQU 3
- ftMenuMsg EQU 4
- ftEventMsg EQU 5
- ftActivateMsg EQU 6
- ftDeactivateMsg EQU 7
- ftGetErrorStringMsg EQU 8
-
- ftAbortMsg EQU 52
-
- ftStartMsg EQU 100
- ftExecMsg EQU 102
- ftSendMsg EQU 103
- ftReceiveMsg EQU 104
-
- ; messages for validate DefProc
-
- ftValidateMsg EQU 0
- ftDefaultMsg EQU 1
-
- ; messages for Setup DefProc
-
- ftSpreflightMsg EQU 0
- ftSsetupMsg EQU 1
- ftSitemMsg EQU 2
- ftSfilterMsg EQU 3
- ftScleanupMsg EQU 4
-
- ; messages for scripting defProc
- ftMgetMsg EQU 0
- ftMsetMsg EQU 1
-
- ; messages for localization defProc
-
- ftL2English EQU 0
- ftL2Intl EQU 1
-
- ; def type
-
- fsetType EQU 'fset'
- fvalType EQU 'fval'
- flocType EQU 'floc'
- fscrType EQU 'fscr'
- fdefType EQU 'fdef'
- fbndType EQU 'fbnd'
- fverType EQU 'vers'
-
- FTSetupStruct Record 0
- theDialog ds.l 1
- count ds.w 1
- theConfig ds.l 1
- procID ds.w 1
- FTSetupStructSize EQU *
- EndR
-
- ENDIF